The value held internally by this Nullable or the extra value passed in.
import std.exception: assertThrown, assertNotThrown; Nullable!int ni; //`get` is implicitly called. Will throw //an AssertError in non-release mode assertThrown!Throwable(ni += 1); ni = 0; assertNotThrown!Throwable(ni += 1);
Gets the value or the default value passed in.